home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / toshset / README.IrDA < prev    next >
Text File  |  2009-06-23  |  3KB  |  78 lines

  1. toshsat1800-irdasetup
  2.  
  3. Version 0.2 2002/04/07 15:42
  4.  
  5. Description:
  6.  
  7. IrDA configurator for laptops with ALI1533 bridge (LPC47N227 SuperIO), smc-ircc
  8. and not initializing BIOS (tested on Toshiba Satellite 1800-514) to be
  9. used with Linux kernel.
  10. Copyright (C) 2002, Daniele Peri <peri@csai.unipa.it>
  11.  
  12. http://lancelot.csai.unipa.it/~peri/toshsat1800-irdasetup.tgz
  13.  
  14. Problem:
  15.  
  16. Toshiba Satellite 1800 laptops are provided with a SMCS LPC47N227 SuperIO chip which is IrDA SIR/FIR capable. The chip is connected through an ALI1533 PCI-ISA bridge. The IrDA subsystem of the SuperIO chip is supported by the smc-ircc Linux kernel module. Unfortunately the BIOS neither configurates the SuperIO chip IrDA subsystem (SIR port, FIR port, dma, irq, IrDA mode, power) nor sets the PCI-ISA bridge to decode any usable port.
  17. Linux kernel is thus prevented to detect the second UART making impossible to use it in SIR mode. For the same reason, the FIR mode smc-ircc is able to detect the SuperIO chip but, once found the IrDA subsystem unconfigured, fails to install.
  18.  
  19. Solution:
  20.  
  21. toshsat1800-irdasetup sets SIR and FIR ioport addresses, DMA and IRQ of the SuperIO chip IrDA subsystem then powers on the second UART. It also configures the PCI-ISA bridge to decode SIR and FIR ports. All this configuration work should be rather done into the kernel but it was more practical and safe to make a small testing tool of it. It can be probably extended to include configuration kludges for other similar SuperIO and ISA bridge combination.
  22. Testing was carried on a Toshiba Satellite 1800-514 with Linux kernel 2.4.17.
  23. I hope this work could be helpful, it was quite funny to do it however.
  24.  
  25. Compilation (Requires pci-utils):
  26.  
  27.     $ cd toshsat1800-irdasetup/
  28.     $ make
  29.  
  30. Usage:
  31.  
  32. Run it as root:
  33.     $ ./toshsat1800-irdasetup
  34.  
  35. then you can install the smc-ircc module:
  36.     $ modprobe smc-ircc
  37.  
  38. I've noticed that the smc-ircc needs parameters ircc_sir and ircc_fir to be specified. So you'd probably add:
  39.  
  40.     options smc-ircc ircc_dma=3 ircc_irq=7 ircc_cfg=0x2e ircc_sir=0x2e8 ircc_fir=0x2f8
  41.  
  42. to /etc/modules.conf
  43.  
  44. You may also want to add a line like:
  45.  
  46.     pre-install smc-ircc /usr/local/sbin/toshsat1800-smcinit
  47.  
  48. to /etc/modules.conf in order to obtain full automatic IrDA setup.
  49. You'll need to execute:
  50.  
  51.     $ depmod -a
  52.  
  53. after modifying /etc/modules.conf to make changes effective.
  54.  
  55. Default values works for Toshiba Satellite 1800 though any configuration value can be changed through options. So far I've discovered how to enable decoding of the following usable ports: 0x2e8, 0x2f8, 0x130, 0x178.
  56. The list of all options is obtaineable through:
  57.  
  58.     $ toshsat1800-irdasetup --help
  59.  
  60.  
  61. Appendix:
  62.  
  63. Ericsson T39m. Setting up an Ircomm link with this phone requires to explicitly reduce the maximum speed to 115200:
  64.  
  65.     $ echo 115200 > /proc/sys/net/irda/max_baud_rate
  66.  
  67. Disclaimer:
  68. This software is experimental. Use it at your own risk.
  69.  
  70. Credits:
  71.  
  72. * SMSC for the downloadable datasheets
  73. * Paul Hampson for its Linux IrDA mailing list messages.
  74.  
  75. To do:
  76.  
  77. * Add more ALI1533 usable ports
  78.